home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’95
/
Boom! '94
/
HackGlue.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-06-24
|
214 b
|
21 lines
|
[
TEXT/MMCC
]
#include <SANE.h>
#undef NAN
#include <fp.h>
double_t sin ( double_t x )
{
extended80 temp = x;
Sin(&temp);
return temp;
}
double_t cos ( double_t x )
{
extended80 temp = x;
Cos(&temp);
return temp;
}